home *** CD-ROM | disk | FTP | other *** search
- # OS/2 Microsoft 6.0 common
-
- AS=masm
- ASFLAGS= -l -mx -w0
- CFLAGS= -AL -c -Oiltn -Gm -Lp -G2 -Aw -FPi
- CC=cl
- LDFLAGS=
-
- OBJS= long.obj getopt.obj memory.obj time.obj filepart.obj identify.obj \
- strtbl.obj rtdb.obj clocal.obj alloc.obj literals.obj rswitch.obj \
- redirerr.obj rutil.obj
-
- HDRS= ..\h\define.h ..\h\config.h ..\h\cstructs.h ..\h\cproto.h ..\h\proto.h\
- ..\h\cpuconf.h ..\h\typedefs.h
-
- all: $(OBJS)
-
- $(OBJS): $(HDRS)
-
- rswitch.obj: $(HDRS) rswitch.asm
- $(AS) $(ASFLAGS) $*.asm,$*.obj;
-
- #
- # The following routine replaces MSC's stack checking code. This
- # way stack checking can be turned on turning coexpressions
- # If this function is not wanted, then make sure that the -Gs
- # option is used to turn off C runtime stack checking.
-
- rutil.obj: rutil.asm
- $(AS) $(ASFLAGS) $*.asm,$*.obj;
-